encoding/hex.dumper.used (field)

14 uses

	encoding/hex (current package)
		hex.go#L223: 	used       int  // number of bytes in the current line
		hex.go#L244: 		if h.used == 0 {
		hex.go#L262: 		if h.used == 7 {
		hex.go#L266: 		} else if h.used == 15 {
		hex.go#L278: 		h.rightChars[h.used] = toChar(data[i])
		hex.go#L279: 		h.used++
		hex.go#L281: 		if h.used == 16 {
		hex.go#L288: 			h.used = 0
		hex.go#L300: 	if h.used == 0 {
		hex.go#L308: 	nBytes := h.used
		hex.go#L309: 	for h.used < 16 {
		hex.go#L311: 		if h.used == 7 {
		hex.go#L313: 		} else if h.used == 15 {
		hex.go#L320: 		h.used++